home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Modules / BackSpaceModules / Source / Multi / NiftyMatrix.h < prev    next >
Text File  |  1992-08-22  |  539b  |  22 lines

  1. // NiftyMatrix.h
  2. // By Jayson Adams, NeXT Developer Support Team
  3. // You may freely copy, distribute and reuse the code in this example.
  4. // NeXT disclaims any warranty of any kind, expressed or implied, as to its
  5. // fitness for any particular use.
  6.  
  7. #import <appkit/Matrix.h>
  8.  
  9. @interface NiftyMatrix:Matrix
  10. {
  11.     id    matrixCache, cellCache, activeCell;
  12. }
  13.  
  14. /* instance methods */
  15. - free;
  16. - mouseDown:(NXEvent *)theEvent;
  17. - drawSelf:(NXRect *)rects :(int)count;
  18. - setupCacheWindows;
  19. - sizeCacheWindow:cacheWindow to:(NXSize *)windowSize;
  20.  
  21. @end
  22.